home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v9n03.arc / SCANSYSD.BAT < prev    next >
DOS Batch File  |  1990-01-12  |  1KB  |  27 lines

  1. ECHO OFF
  2. ECHO ╔═════════════════════════════════════════════════════════════════════════╗
  3. ECHO ║ SCANsysD will check all files on the current disk. It will compare them ║
  4. ECHO ║ with check data recorded in each directory on the disk.                 ║
  5. ECHO ╟─────────────────────────────────────────────────────────────────────────╢
  6. ECHO ║ To use this batch file you must have the PC Integrity Toolkit files     ║
  7. ECHO ║ available in a directory on the DOS PATH.                               ║
  8. ECHO ╟─────────────────────────────────────────────────────────────────────────╢
  9. ECHO ║    PCDATA TOOLKIT 1.0 Copyright (C) 1990 Ziff Communications Co.        ║
  10. ECHO ║                    PC Magazine ■ Wolfgang Stiller                       ║
  11. ECHO ╚═════════════════════════════════════════════════════════════════════════╝
  12. CHKDSK/F
  13. cd\
  14. Xall scanRdr
  15. IF ERRORLEVEL 32 GOTO BadXall
  16. ECHO ╔════════════════════════════════════════════════════════════════╗
  17. ECHO ║             * * *   Checking is complete   * * *               ║
  18. ECHO ╚════════════════════════════════════════════════════════════════╝
  19. GOTO End
  20. :BadXall
  21. ECHO ╔═════════════════════════════════════════════════════════════════════════╗
  22. ECHO ║ Xall has failed.  Please check the prior error messages. Most likely    ║
  23. ECHO ║ your COMSPEC environment variable does not point to a good COMMAND.COM. ║
  24. ECHO ╚═════════════════════════════════════════════════════════════════════════╝
  25. :End
  26. 
  27.